home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.4 KB | 66 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: SLCyUtil.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- // Cyberdog Utilities
- //
- //========================================================================================
-
- #ifndef SLCYUTIL_H
- #define SLCYUTIL_H
-
- //-----------------------------------------------------------------------------
- // Includes and Forwards
- //-----------------------------------------------------------------------------
-
- #ifndef FWSTDDEF_H
- #include "FWStdDef.h"
- #endif
-
- class CyberItem;
- class FW_OSink;
- class CyberSession;
-
- //-----------------------------------------------------------------------------
- // Cyberdog Utilities
- //-----------------------------------------------------------------------------
-
- //
- // Glue
- //
-
- FW_EXTERN_C_BEGIN
-
- //#if defined(FW_ODFLIB_IMPORT)
- //#pragma import on
- //#elif defined(FW_ODFLIB)
- //#pragma export on
- //#endif
-
- //
- // Cyberdog Utilities
- //
-
- FW_Boolean FW_CyberdogIsInstalled (Environment* ev);
-
- void FW_WriteCyberItem (Environment* ev, CyberItem* ci, FW_OSink* sink);
- CyberItem* FW_ReadCyberItem (Environment* ev, CyberSession* session, FW_OSink* sink);
-
- //
- // Glue
- //
-
- //#if defined(FW_ODFLIB_IMPORT)
- //#pragma import off
- //#elif defined(FW_ODFLIB)
- //#pragma export off
- //#endif
-
- FW_EXTERN_C_END
-
- #endif // SLCYUTIL_H
-
-